home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / referenc / windll / winapi.msg < prev    next >
INI File  |  1991-12-31  |  6KB  |  230 lines

  1. [MESSAGES]
  2. MSG1=CB_FINDSTRING
  3. MSG2=CB_GETCURSEL
  4. MSG3=CB_INSERTSTRING
  5. MSG4=CB_LIMITTEXT
  6. MSG5=CB_RESETCONTENT
  7. MSG6=CB_SELECTSTRING
  8. MSG7=CB_SETCURSEL
  9. MSG8=CB_SHOWDROPDOWN
  10. MSG9=EM_CANUNDO
  11. MSG10=EM_EMPTYUNDOBUFFER
  12. MSG11=EM_GETMODIFY
  13. MSG12=EM_LIMITTEXT
  14. MSG13=EM_UNDO
  15. MSG14=LB_FINDSTRING
  16. MSG15=LB_GETCURSEL
  17. MSG16=LB_GETSEL
  18. MSG17=LB_GETTOPINDEX
  19. MSG18=LB_INSERTSTRING
  20. MSG19=LB_RESETCONTENT
  21. MSG20=LB_SELECTSTRING
  22. MSG21=LB_SETCURSEL
  23. MSG22=LB_SETTOPINDEX
  24. MSG23=WM_TIMECHANGE
  25. MSG24=WM_UNDO
  26. MSG25=WM_WININICHANGE
  27.  
  28.  
  29. [CB_FINDSTRING]
  30. Value=1036
  31. Descript=Finds first string in list box with given prefix string.
  32. Remark=Apparently only works with Style #2.
  33. wParam=specifies where (index number) to begin searching rest of list.
  34. lParam=contains prefix string
  35. Return=Index number of matching item or -1 (CB_ERR) if unsuccessful.
  36.  
  37. [CB_GETCURSEL]
  38. Value=1031
  39. Descript=Returns index of currently selected item in combo box list.
  40. Remark=Apparently only works on Style #2.
  41. wParam=Not Used.
  42. lParam=Not Used.
  43. Return=Index of selected item or -1 (CB_ERR) if no item is selected.
  44.  
  45. [CB_INSERTSTRING]
  46. Value=1034
  47. Descript=Inserts string to the list box, ignores sorting.
  48. Remark=Apparently only works on style #2.
  49. wParam=Index value for inserted string.
  50. lParam=lpointer to string to be sorted.
  51. Return=length of inserted string, -1 (CB_ERR)invalid index number, -2 (CB_ERRSPACE) insufficient space.
  52.  
  53. [CB_LIMITTEXT]
  54. Value=1045
  55. Descript=Limits length of text allowed in Combo Box edit control.
  56. Remark=CB_LIMITTEXT = 1025 but VB requires we use EM_LIMITTEXT value 1045. 
  57. wParam=Max number of bytes allowed.
  58. lParam=Not Used.
  59. Return=1 successful,0 failed, -1 (CB_ERR) if non edit control available. 
  60.  
  61. [CB_RESETCONTENT]
  62. Value=1035
  63. Descript=Removes all strings from a Combo Box list.
  64. Remark=Apparently works only on style #2.
  65. wParam=Not Used.
  66. lParam=Not Used.
  67. Return=Not Used.
  68.  
  69. [CB_SELECTSTRING]
  70. Value=1036
  71. Descript=Selects first string in list box that matches a prefix string.
  72. Remark= Apparently will only work with Style #2.
  73. wParam=Index of list, where search is to begin.
  74. lParam=lpointer to prefix string.
  75. Return=Index of string if found. -1 (CB_ERR) if unsuccessfull.
  76.  
  77. [CB_SETCURSEL]
  78. Value=1038
  79. Descript=Selects string in List box AND scrolls it into view.
  80. Remark=Apparently works only on style #2.
  81. wParam=Index of string to be selected, -1 sets list box to no selection.
  82. lParam=Not Used.
  83. Return=-1 (CB_ERR) if wParam is invalid.
  84.  
  85. [CB_SHOWDROPDOWN]
  86. Value=1039
  87. Descript=Force display of a Combo Box List.
  88. Remark=Apparently works only on style #2.
  89. wParam=1 (True) displays list, 0 (False) hides list.
  90. lParam=Not Used.
  91. Return=Not Used.
  92.  
  93. [EM_CANUNDO]
  94. Value=1046
  95. Descript=Determines if a edit cantrol can respond to EM_UNDO.
  96. Remark=
  97. wParam=Not Used.
  98. lParam=Not Used.
  99. Return=0 CAN NOT respond to EM_UNDO, otherwise it can.
  100.  
  101. [EM_EMPTYUNDOBUFFER]
  102. Value=1053
  103. Descript=Clears edit controls undo buffer, disables UNDO operations.
  104. Remark=
  105. wParam=Not Used.
  106. lParam=Not Used.
  107. Return=Not Used.
  108.  
  109.  
  110. [EM_GETMODIFY]
  111. Value=1032
  112. Descript=Used to determine if User has modified text in an edit control.
  113. Remark=
  114. wParam=Not Used.
  115. lParam=Not Used.
  116. Return=Value of current modify flag.
  117.  
  118. [EM_LIMITTEXT]
  119. Value=1045
  120. Descript=Limits length of text user may enter in an edit control.
  121. Remark=
  122. wParam=Max number of bytes allowed.
  123. lParam=Not Used.
  124. Return=Not Used.
  125.  
  126. [EM_UNDO]
  127. Value=1047
  128. Descript=Undo last changes to an edit control.
  129. Remark=
  130. wParam=Not Used.
  131. lParam=Not Used.
  132. Return=0 if failed, otherwise successful.
  133.  
  134. [LB_FINDSTRING]
  135. Value=1040
  136. Descript=Finds first matching string in a list box for a given prefix string.
  137. Remark=
  138. wParam=Index for first Item to begin searching after.
  139. lParam=lpointer to prefix string.
  140. Return=Index of located string if successful, -1 (LB_ERR) if not found.
  141.  
  142. [LB_GETCURSEL]
  143. Value=1033
  144. Descript=Returns index of currently selected item in List Box.
  145. Remark=
  146. wParam=Not Used.
  147. lParam=Not Used.
  148. Return=Index of selected item, -1 (LB_ERR) if no item selected or mulitple select list box.
  149.  
  150. [LB_GETSEL]
  151. Value=1032
  152. Descript=Returns selection state of a given item in a List Box.
  153. Remark=
  154. wParam=Index for item in List Box.
  155. lParam=Not Used.
  156. Return=0 if not selected, >0 if selected, -1(LB_ERR) error in execution.
  157.  
  158. [LB_GETTOPINDEX]
  159. Value=1039
  160. Descript=Returns Index number for first string visible in a List Box.
  161. Remark=
  162. wParam=Not Used.
  163. lParam=Not Used.
  164. Return=Index of first visible item in List Box.
  165.  
  166. [LB_INSERTSTRING]
  167. Value=1026
  168. Descript=Inserts string to List Box with out sorting.
  169. Remark=
  170. wParam=Index position of new string, -1 if end of list.
  171. lParam=lpointer to string to be inserted.
  172. Return=Index of insert position if successful, -1 (LB_ERR) if failed, -2 (LB_ERRSPACE) insufficient space.
  173.  
  174. [LB_RESETCONTENT]
  175. Value=1029
  176. Descript=Removes all strings from a List Box.
  177. Remark=
  178. wParam=Not Used.
  179. lParam=Not Used.
  180. Return=Not Used.
  181.  
  182. [LB_SELECTSTRING]
  183. Value=1037
  184. Descript=Searches List Box for string matching a given prefix string.
  185. Remark=
  186. wParam=Index where to begin search after in List Box, -1 top of list box.
  187. lParam=lPointer to prefix string to use for search.
  188. Return=Index of selected string, -1 (LB_ERR) if not located.
  189.  
  190. [LB_SETCURSEL]
  191. Value=1031
  192. Descript=Selects string in List Box AND scrolls it into view.
  193. Remark=
  194. wParam=Index of string to be selected.
  195. lParam=Not Used.
  196. Return=-1 (LB_ERR) if not successful.
  197.  
  198. [LB_SETTOPINDEX]
  199. Value=1048
  200. Descript=Set Index to first visible string in a List Box.
  201. Remark=
  202. wParam=Index for first visible item.
  203. lParam=Not Used.
  204. Return=-1 (LB_ERR) if unsuccessful.
  205.  
  206. [WM_TIMECHANGE]
  207. Value=1054
  208. Descript=Notify of change of system time, set hWnd to OxFFFF (65535) for all Top Level Win Apps.
  209. Remark=
  210. wParam=Not Used.
  211. lParam=Not Used.
  212. Return=Not Used.
  213.  
  214. [WM_UNDO]
  215. Value=772
  216. Descript=Undo the last operation.
  217. Remark=
  218. wParam=Not Used.
  219. lParam=Not Used.
  220. Return=Not Used.
  221.  
  222. [WM_WININICHANGE]
  223. Value=26
  224. Descript=Notify of changes made to WIN.INI file. Set hWnd to 0xFFFF (65535) for all top level Win Apps.
  225. Remark=
  226. wParam=Not Used.
  227. lParam=lpointer to string containing name of section modified, string DOES NOT have square brackets.
  228. Return=Not Used.
  229.  
  230.